home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap04 / howto05 / ccfmgr24.dpr next >
Encoding:
Text File  |  1995-10-27  |  591 b   |  22 lines

  1. program Ccfmgr24;
  2.  
  3. uses
  4.   Forms,
  5.   Ufmgr24 in 'UFMGR24.PAS' {CCFileMgrForm},
  6.   Drwsutl4 in 'DRWSUTL4.PAS',
  7.   Drwsutl1 in 'DRWSUTL1.PAS',
  8.   Cfmpfun in 'CFMPFUN.PAS' {CCFMPropsForm},
  9.   Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
  10.   Ccprnmgr in 'CCPRNMGR.PAS' {CCPrintForm};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Title := 'CC File Center';
  16.   Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
  17.   Application.CreateForm(TCCFMPropsForm, CCFMPropsForm);
  18.   Application.CreateForm(TDestDDForm, DestDDForm);
  19.   Application.CreateForm(TCCPrintForm, CCPrintForm);
  20.   Application.Run;
  21. end.
  22.